(C-like) form
ErrorsCollection

(C-like) form

Synthesised documentation from type/Signature

From type/Signature

See Original text in context

This is similar to placing type constraints on variables like my Type $var = 20;, except the $var is a definition for a routine.

my Int sub bar { 1 };     # Valid 
my 42 sub bad-answer {};  # This will fail.